home *** CD-ROM | disk | FTP | other *** search
/ Wayzata's Best of Shareware PC/Windows 1 / Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso / mac / DOS / GRAPHICS / POVSCN / LEVEL1.ZIP / GLASS.POV < prev    next >
Text File  |  1992-07-18  |  796b  |  43 lines

  1. // Persistence Of Vision raytracer version 1.0 sample file.
  2.  
  3. #include "colors.inc"
  4. #include "textures.inc"
  5.  
  6. camera {
  7.    location <0.0  20.0  -125.0>
  8.    direction <0.0 0.0  2.0>
  9.    up  <0.0  1.0  0.0>
  10.    right <1.33333 0.0 0.0>
  11.    look_at <0.0 25.0 0.0> 
  12. }
  13.  
  14. object {
  15.    sphere { <0.0  25.0  0.0>  20.0 }
  16.    texture { 
  17.       color red 1.0 green 1.0 blue 1.0 alpha 1.0
  18.       ambient 0.0
  19.       diffuse 0.0
  20.       specular 0.5
  21.       roughness 0.001
  22.       reflection 0.2
  23.       refraction 1.0
  24.       ior 1.5
  25.    }
  26. }
  27.  
  28. object { 
  29.    sphere { <0.0 0.0 0.0> 200.0 }
  30.    texture {
  31.       Bright_Blue_Sky
  32.       scale <30.0 10.0 10.0>
  33.       ambient 1
  34.       diffuse 0.8
  35.    }
  36. }
  37.  
  38. object {
  39.    light_source { <100.0  140.0  -130.0>
  40.       colour red 0.7 green 0.7 blue 0.7
  41.    }
  42. }
  43.